上圖是只要使用者輸入,有包含"看診進度"這四個字,
我們便顯示醫院的
診間
地點
醫師
科別
目前號碼
那這些資料在哪呢?
來到這個Web Service的方法網址
http://210.242.237.231/HospInfo/AppReg.asmx?op=GetClinicProgress
發現資料主要都被這三行包住
因此要用以下程式碼
response = client.call(:get_clinic_progress)
此行是把http://210.242.237.231/HospInfo/AppReg.asmx?op=GetClinicProgress
的xml檔抓出來放在response
data = response.to_array(:get_clinic_progress_response,:get_clinic_progress_result,:day_clinic_info)
此行是把xml轉成好多個雜湊分別放在data[0]......data[1]......
下一篇會再說明如何顯示在介面上